home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / parted / linux.h < prev    next >
C/C++ Source or Header  |  2006-04-20  |  1KB  |  38 lines

  1. /*
  2.     libparted - a library for manipulating disk partitions
  3.     Copyright (C) 2001 Free Software Foundation, Inc.
  4.  
  5.     This program is free software; you can redistribute it and/or modify
  6.     it under the terms of the GNU General Public License as published by
  7.     the Free Software Foundation; either version 2 of the License, or
  8.     (at your option) any later version.
  9.  
  10.     This program is distributed in the hope that it will be useful,
  11.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.     GNU General Public License for more details.
  14.  
  15.     You should have received a copy of the GNU General Public License
  16.     along with this program; if not, write to the Free Software
  17.     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  18. */
  19.  
  20. #ifndef PED_LINUX_H_INCLUDED
  21. #define PED_LINUX_H_INCLUDED
  22.  
  23. #include <parted/parted.h>
  24. #include <parted/device.h>
  25.  
  26. #define LINUX_SPECIFIC(dev)    ((LinuxSpecific*) (dev)->arch_specific)
  27.  
  28. typedef    struct _LinuxSpecific    LinuxSpecific;
  29.  
  30. struct _LinuxSpecific {
  31.     int    fd;
  32. };
  33.  
  34. extern PedArchitecture ped_linux_arch;
  35.  
  36. #endif /* PED_LINUX_H_INCLUDED */
  37.  
  38.